home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir40 / qtut10.zip / 4TRY.DOC < prev    next >
Text File  |  1994-03-02  |  4KB  |  104 lines

  1. 4TRY.DOC                                                            4 screens
  2.     The  DX varieties of the '386 and '486 processors  also  have  a
  3.     "Maths  Co-processor" that is capable of more complex scientific
  4.     calculation.
  5.  
  6.     Many  specialised modern programmes,  used in the area of design
  7.     and scientific calculation, require the Maths Co-processor to be
  8.     installed so that they can operate.
  9.  
  10.     Normal home  computing rarely  requires more  than a  DX type of 
  11.     machine.
  12.  
  13.  
  14.  
  15.     Data BUS
  16.     ────────
  17.  
  18.     If  you think of this BUS as a roadway between various parts  of
  19.     the  computer, and a BYTE,  or character of information  as  the
  20.     vehicle, the following may be a little clearer.
  21.  
  22.     The earliest of the true "personal computers" had a BUS that was
  23.     8 bits wide that was able to transfer 1 character of information
  24.     at  a time between the CPU and the RAM chips,  though inside  of
  25.     the  CPU itself,  different areas of the chip could be addressed
  26.     on a 16 bit BUS.
  27.  
  28.     Later  models of computer,  from the '286 upward,  are  able  to
  29.     transfer  information, or bits,  between the CPU and RAM along a
  30.     BUS of 16 bits width.
  31.  
  32.     This  means that 16 ons or offs,  or 2 BYTES of information, can
  33.     travel at the same  moment  of time from the CPU to the RAM chip
  34.     (or back).
  35.  
  36.     As the  technology  improved in the  hardware department so also
  37.     did the programmes to run on them.
  38.  
  39.     Items  like the popular "WINDOWS" (tm MICROSOFT)  were  designed
  40.     for  transferring no less than 2 BYTES of information at a  time
  41.     and  are therefore unable to run on the older XT,  or 8088 class
  42.     of machines.
  43.  
  44.     The more expensive and powerful of the newer PC's have a 32  bit
  45.     BUS, with whewee fast critters running 64 bit BUS's transferring
  46.     big mobs of info real quick.
  47.  
  48.     Of  course software technology reaches out to close the gap  and
  49.     there are new operating systems competing with WINDOWS that  are
  50.     designed  to run on these 32  bit  data  buses  with  incredible
  51.     efficiency.
  52.  
  53.  
  54.  
  55.  
  56.  
  57.     Random Access Memory Chips
  58.     ──────────────────────────
  59.  
  60.  
  61.     How  the  RAM  chips  actually  work  could  probably  be   best
  62.     described  (keeping in mind that we  are  dealing  here  with  a
  63.     series of on and off conditions) in the same manner as the start
  64.     of this MODULE.
  65.  
  66.     "If  the light is on I will be at home" could be  translated  to
  67.     say  that "If the light is still on it is  because  I  have  not
  68.     switched it off, and therefore am still at home."
  69.  
  70.  
  71.  
  72.     Now, are you ready for it?
  73.  
  74.     If  a switch being either left on or off represents a zero or  a
  75.     one .....
  76.  
  77.         ....and  a bank of eight switches in various  states  of
  78.     being on or off can represent any of 256 ASCII characters ...
  79.  
  80.                               ...  by having
  81.     a  memory chip comprised of something similar to many  miniature
  82.     switches  arranged in banks of eight (each with  an  address  so
  83.     that they can be found again) it is possible to send a character
  84.     to  each of  a  series  of  8  switches  that  represent  stored
  85.     information.
  86.  
  87.     It  needs a lot of switches,  which of course  is  exactly  what
  88.     integrated circuit silicon chips can do well.
  89.  
  90.       ┌───────────────────────────────────────────────────────────────────┐
  91.       │ The information stored in your RAM memory chips are only as good  │
  92.       │ as  your power supply,  the moment you turn off  the  power  the  │
  93.       │ whole  lot disapears  forever to "software heaven"  as  all  the  │
  94.       │ switches return to their natural resting state.                  │
  95.       │                                             │
  96.       │ You  are in  fact  at  this  moment  staring  at  an  electrical  │
  97.       │ illusion.                              │
  98.       │                                          │
  99.       │ For this reason, permanent, or SECONDARY, storage is required in  │
  100.       │ the shape of disk and or tape drives.                      │
  101.       └───────────────────────────────────────────────────────────────────┘
  102.  
  103.  
  104.